Administering Information Store
Get-MailboxDatabase
”Database_Name” | Add-ADPermission -User
domain\user –ExtendedRights ms-Exch-Store- Admin,Receive-As
1 ) does it give full access to the user 'user'
2 ) what is
ms-Exch-Store-Admin exactly , what is the privilages it got
thanks
April 5th, 2011 2:00pm
It could See:
http://theessentialexchange.com/blogs/michael/archive/2010/04/07/the-ms-exch-store-admin-permission.aspx
Free Windows Admin Tool Kit Click here and download it now
April 5th, 2011 2:35pm
How do i verify al lthe permission on ms-Exch-Store-Admin (Information Store)
Thanks
April 10th, 2011 12:42pm
Hi supportsib,
Per my known, it is defined as the Admin account the Administer Information Store extended right.
If you want to verify what about the detailed mean, you could open a ticket from MS to confirm it, there is no futher information about it.
Regards!
GavinPlease remember to click Mark as Answer on the post that helps you, and to click Unmark as Answer if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
Free Windows Admin Tool Kit Click here and download it now
April 11th, 2011 3:41am
1 ) Get-MailboxDatabase ”Database_Name” | Add-ADPermission -User BESAdmin -AccessRights ExtendedRight -ExtendedRights Receive-As, Send-As, ms-Exch-Store-Admin
2 ) Get-MailboxDatabase ”Database_Name” | Add-ADPermission -User domain\BESAdmin –ExtendedRights ms-Exch-Store- Admin,Receive-As
3 ) Add-ADPermission “CN=Users,DC=domain,DC=com” –User domain\BESAdmin –ExtendedRights Send-As –InheritanceType Descendents –InheritedObjectType User
Is first statement is equivalent to 2+3(Combined)
April 18th, 2011 11:12am
Hi supportsib,
The third part seems has something wrong,
I would use as below:
Add-ADPermission “CN=Users,DC=domain,DC=com” –User domain\BESAdmin -accessrights extendedright –ExtendedRights Send-As –InheritanceType Descendents –InheritedObjectType User
If so, I think you are right.
Regards!
Gavin
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
Free Windows Admin Tool Kit Click here and download it now
April 18th, 2011 11:18pm
Thanks Gavin
The 3rd part i took from cisco IC pre-requisites documentation . Please can you explain what exactly those statement do ?
Thank you
April 18th, 2011 11:48pm
Hi supportsib,
Some information for you:
http://technet.microsoft.com/en-us/library/bb124403.aspx
Regards!
GavinPlease remember to click Mark as Answer on the post that helps you, and to click Unmark as Answer if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
Free Windows Admin Tool Kit Click here and download it now
April 19th, 2011 11:47pm